crypto/tls.certificateMsg.certificates (field)

13 uses

	crypto/tls (current package)
		handshake_client.go#L650: 	if !ok || len(certMsg.certificates) == 0 {
		handshake_client.go#L685: 		if err := c.verifyServerCertificate(certMsg.certificates); err != nil {
		handshake_client.go#L695: 		if !bytes.Equal(c.peerCertificates[0].Raw, certMsg.certificates[0]) {
		handshake_client.go#L749: 		certMsg.certificates = chainToSend.Certificate
		handshake_messages.go#L1367: 	certificates [][]byte
		handshake_messages.go#L1372: 	for _, slice := range m.certificates {
		handshake_messages.go#L1376: 	length := 3 + 3*len(m.certificates) + i
		handshake_messages.go#L1389: 	for _, slice := range m.certificates {
		handshake_messages.go#L1425: 	m.certificates = make([][]byte, numCerts)
		handshake_messages.go#L1429: 		m.certificates[i] = d[3 : 3+certLen]
		handshake_server.go#L575: 	certMsg.certificates = hs.cert.Certificate
		handshake_server.go#L655: 			Certificate: certMsg.certificates,
		handshake_server.go#L659: 		if len(certMsg.certificates) != 0 {